home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Chat & Communication / Digsby build 37 / digsby_setup.exe / lib / distutils / spawn.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-13  |  4KB  |  141 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.5)
  3.  
  4. __revision__ = '$Id: spawn.py 37828 2004-11-10 22:23:15Z loewis $'
  5. import sys
  6. import os
  7. import string
  8. from distutils.errors import *
  9. from distutils import log
  10.  
  11. def spawn(cmd, search_path = 1, verbose = 0, dry_run = 0):
  12.     if os.name == 'posix':
  13.         _spawn_posix(cmd, search_path, dry_run = dry_run)
  14.     elif os.name == 'nt':
  15.         _spawn_nt(cmd, search_path, dry_run = dry_run)
  16.     elif os.name == 'os2':
  17.         _spawn_os2(cmd, search_path, dry_run = dry_run)
  18.     else:
  19.         raise DistutilsPlatformError, "don't know how to spawn programs on platform '%s'" % os.name
  20.  
  21.  
  22. def _nt_quote_args(args):
  23.     for i in range(len(args)):
  24.         if string.find(args[i], ' ') != -1:
  25.             args[i] = '"%s"' % args[i]
  26.             continue
  27.     
  28.     return args
  29.  
  30.  
  31. def _spawn_nt(cmd, search_path = 1, verbose = 0, dry_run = 0):
  32.     executable = cmd[0]
  33.     cmd = _nt_quote_args(cmd)
  34.     if search_path:
  35.         if not find_executable(executable):
  36.             pass
  37.         executable = executable
  38.     
  39.     log.info(string.join([
  40.         executable] + cmd[1:], ' '))
  41.     if not dry_run:
  42.         
  43.         try:
  44.             rc = os.spawnv(os.P_WAIT, executable, cmd)
  45.         except OSError:
  46.             exc = None
  47.             raise DistutilsExecError, "command '%s' failed: %s" % (cmd[0], exc[-1])
  48.  
  49.         if rc != 0:
  50.             raise DistutilsExecError, "command '%s' failed with exit status %d" % (cmd[0], rc)
  51.         
  52.     
  53.  
  54.  
  55. def _spawn_os2(cmd, search_path = 1, verbose = 0, dry_run = 0):
  56.     executable = cmd[0]
  57.     if search_path:
  58.         if not find_executable(executable):
  59.             pass
  60.         executable = executable
  61.     
  62.     log.info(string.join([
  63.         executable] + cmd[1:], ' '))
  64.     if not dry_run:
  65.         
  66.         try:
  67.             rc = os.spawnv(os.P_WAIT, executable, cmd)
  68.         except OSError:
  69.             exc = None
  70.             raise DistutilsExecError, "command '%s' failed: %s" % (cmd[0], exc[-1])
  71.  
  72.         if rc != 0:
  73.             print "command '%s' failed with exit status %d" % (cmd[0], rc)
  74.             raise DistutilsExecError, "command '%s' failed with exit status %d" % (cmd[0], rc)
  75.         
  76.     
  77.  
  78.  
  79. def _spawn_posix(cmd, search_path = 1, verbose = 0, dry_run = 0):
  80.     log.info(string.join(cmd, ' '))
  81.     if dry_run:
  82.         return None
  83.     
  84.     if not search_path or os.execvp:
  85.         pass
  86.     exec_fn = os.execv
  87.     pid = os.fork()
  88.     if pid == 0:
  89.         
  90.         try:
  91.             exec_fn(cmd[0], cmd)
  92.         except OSError:
  93.             e = None
  94.             sys.stderr.write('unable to execute %s: %s\n' % (cmd[0], e.strerror))
  95.             os._exit(1)
  96.  
  97.         sys.stderr.write('unable to execute %s for unknown reasons' % cmd[0])
  98.         os._exit(1)
  99.     else:
  100.         while None:
  101.             
  102.             try:
  103.                 (pid, status) = os.waitpid(pid, 0)
  104.             except OSError:
  105.                 exc = None
  106.                 import errno as errno
  107.                 if exc.errno == errno.EINTR:
  108.                     continue
  109.                 
  110.                 raise DistutilsExecError, "command '%s' failed: %s" % (cmd[0], exc[-1])
  111.  
  112.             None if os.WIFSIGNALED(status) else exit_status == 0
  113.             if os.WIFSTOPPED(status):
  114.                 continue
  115.                 continue
  116.             raise DistutilsExecError, "unknown error executing '%s': termination status %d" % (cmd[0], status)
  117.             continue
  118.             return None
  119.  
  120.  
  121. def find_executable(executable, path = None):
  122.     if path is None:
  123.         path = os.environ['PATH']
  124.     
  125.     paths = string.split(path, os.pathsep)
  126.     (base, ext) = os.path.splitext(executable)
  127.     if (sys.platform == 'win32' or os.name == 'os2') and ext != '.exe':
  128.         executable = executable + '.exe'
  129.     
  130.     if not os.path.isfile(executable):
  131.         for p in paths:
  132.             f = os.path.join(p, executable)
  133.             if os.path.isfile(f):
  134.                 return f
  135.                 continue
  136.         
  137.         return None
  138.     else:
  139.         return executable
  140.  
  141.